home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-01 | 1.2 KB | 58 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _VALUEITR_
- #define _VALUEITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODValueIterator;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
-
- interface ODValueNameSpace;
-
-
- //==============================================================================
- // ODValueIterator
- //==============================================================================
-
- interface ODValueIterator : ODObject
- {
- void First(out ODISOStr key,
- out ODByteArray value);
- void Next(out ODISOStr key,
- out ODByteArray value);
- ODBoolean IsNotComplete();
-
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODValueIterator;
-
- override:
- somUninit;
-
- releaseorder:
- First,
- Next,
- IsNotComplete,
-
- reserved1;
-
- };
- #endif //# __SOMIDL__
- };
-
- #endif // _VALUEITR_
-